@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300&display=swap');
html {
    font-family: 'Spectral', serif;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

p {
    font-weight: bold;
}

.right-align {
    margin: 0;
}

.nav {
    color: black;
    height: 80px;
    line-height: 30px;
}

#cocktail-input {
    font-family: 'Spectral', serif;
}

#cocktail-input-2,
#ingredient-input,
#ingredient-input-2 {
    font-family: 'Spectral', serif;
}

.landing-info {
    font-size: 20px;
    font-weight: lighter;
}

.input-field label {
    color: white;
}

.img-head {
    margin: 10px 0;
    width: 70%;
}

.btn {
    font-family: 'Spectral', serif;
}

.page-footer {
    padding: 5px;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: lighter;
}

#footer-blurb {
    font-weight: lighter;
}

li {
    text-decoration: none;
    float: left;
    text-align: left;
    padding-right: 10px;
}

ul {
    list-style-type: none;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.card {
    padding: 5%;
}

.cocktail-link {
    vertical-align: middle;
    max-width: 300px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cocktail-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 166, 154, 255);
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.cocktail-link:hover:before,
.cocktail-link:focus:before,
.cocktail-link:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.ingredient-link {
    vertical-align: middle;
    max-width: 300px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.selfie {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin-left: 10px;
    margin-right: auto;
    margin-top: 7px;
    border: 2px solid;
}

.about-text {
    color: black;
}

.about-cards {
    margin-bottom: 100px;
}

.ingredient-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.ingredient-link:hover:before,
.ingredient-link:focus:before,
.ingredient-link:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.large.material-icons{
    display: block;
}